Developer Documentation
PATHJava Developer Documentation > Mac OS Runtime for Java > JManager > Programming With JManager


Session Security Indicators

When calling the JMSetVerifyMode function, you use the CodeVerifierOptions type to specify which Java code should be run through the verifier before execution.

enum CodeVerifierOptions {
    eDontCheckCode = 0,
    eCheckRemoteCode,
    eCheckAllCode
    };

Constant descriptions

eDontCheckCode
Don't verify any code.
eCheckRemoteCode
Verify any code that is read from a network.
eCheckAllCode
Verify all code.

When calling the JMSetProxyInfo function you must use the JMProxyType type to specify the type of proxy to use.

enum JMProxyType {
    eHTTPProxy = 0,
    eFirewallProxy,
    eFTPProxy
};

Constant descriptions

eHTTPProxy
An HTTP proxy
eFirewallProxy
A firewall proxy
eFTPProxy
An FTP proxy

© 1998 Apple Computer, Inc. — (Last Updated 3 Dec 98)